home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / gdb.new / gdb-4.0 / bfd / doc / core.p < prev    next >
Encoding:
Text File  |  1991-09-29  |  700 b   |  29 lines

  1. /* bfd_core_file_failing_command
  2. Returns a read-only string explaining what program was running when
  3. it failed and produced the core file being read
  4. */
  5.  
  6.  PROTO(CONST char *, bfd_core_file_failing_command, (bfd *));
  7.  
  8. /*
  9.  
  10.  bfd_core_file_failing_signal
  11. Returns the signal number which caused the core dump which generated
  12. the file the BFD is attached to.
  13. */
  14.  
  15.  PROTO(int, bfd_core_file_failing_signal, (bfd *));
  16.  
  17. /*
  18.  
  19.  core_file_matches_executable_p
  20. Returns @code{true} if the core file attached to @var{core_bfd} was
  21. generated by a run of the executable file attached to @var{exec_bfd},
  22. or else @code{false}.
  23. */
  24.  PROTO(boolean, core_file_matches_executable_p,
  25.     (bfd *core_bfd, bfd *exec_bfd));
  26.  
  27. /*
  28. */
  29.